home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ssh_keygen.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  59 lines

  1. #
  2. # This script was written by Xue Yong Zhi<xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11340);
  10.  script_bugtraq_id(2222);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2001-0259");
  13.  
  14.  name["english"] = "SSH Secure-RPC Weak Encrypted Authentication";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. You are running SSH Communications Security SSH 1.2.27 - 1.2.30.
  19.  
  20. With Secure-RPC, this version can allow local attackers to recover a 
  21. SUN-DES-1 magic phrase generated by another user, which the attacker 
  22. can use to decrypt that user's private key file.
  23.  
  24. Solution :
  25. Patch and New version are available from SSH.
  26.  
  27. Risk factor : Low";
  28.     
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for the remote SSH version";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi",
  38.         francais:"Ce script est Copyright (C) 2003 Xue Yong Zhi");
  39.  family["english"] = "Gain a shell remotely";
  40.  script_family(english:family["english"]);
  41.  script_dependencie("ssh_detect.nasl");
  42.  script_require_ports("Services/ssh", 22);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50. port = get_kb_item("Services/ssh");
  51. if(!port)port = 22;
  52.  
  53. banner = get_kb_item("SSH/banner/" + port );
  54. if ( ! banner ) exit(0);
  55.  
  56. #Looking for SSH product version number  < 1.2.30
  57. if(ereg(string:banner, pattern:"SSH-.*-1\.2\.([1-2][0-9]|30)[^0-9]*$", icase:TRUE))security_warning(port);
  58.  
  59.